home *** CD-ROM | disk | FTP | other *** search
- Path: keats.ugrad.cs.ubc.ca!not-for-mail
- From: c2a192@ugrad.cs.ubc.ca (Kazimir Kylheku)
- Newsgroups: comp.lang.c,comp.unix.shell
- Subject: Re: command line argument help
- Followup-To: comp.unix.shell
- Date: 28 Jan 1996 11:17:43 -0800
- Organization: Computer Science, University of B.C., Vancouver, B.C., Canada
- Message-ID: <4egi4nINNncr@keats.ugrad.cs.ubc.ca>
- References: <4edfth$ok@muss.CIS.McMaster.CA>
- NNTP-Posting-Host: keats.ugrad.cs.ubc.ca
-
- In article <4edfth$ok@muss.CIS.McMaster.CA>, <shadowfax> wrote:
- >to all the c gods out there:
- >
- >i am not having too much success with command line arguments. i am
- >trying to make a simple sumation executable for dos. i am using borland
- >c++ v3.1. what i want as the end result is the user just types:
- >
- >c:\> sum 6 3
-
- Get a decent shell that can do arithmetic.
-
- echo $((6 + 3))
- --
-
-